home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Turnbull China Bikeride
/
Turnbull China Bikeride - Disc 2.iso
/
STUTTGART
/
HARDWARE
/
Z80CARD
/
Z80card
/
source
/
1
next >
Wrap
Text File
|
1994-04-12
|
181b
|
11 lines
;sum the two numbers supplied by the Arc in locations
;hex 20 and 21, producing a result in hex 22 for the Arc
;to verify
ORG 0
LD A,($20)
LD B,A
LD A,($21)
ADD A,B
LD ($22),A
HALT